cody - HTMLify profile

cody
4270 Files
632542 Views
Latest files of /cody/solygambas/html-css-javascript-projects/009-sound board
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: rgb(161, 100, 223);
* {
box-sizing: border-box;
}
body {
background-color: rgb(161, 100, 223);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Sound Board</title>
</head>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Sound Board</title>
</head>
const sounds = ["applause", "boo", "gasp", "tada", "victory", "wrong"];
const buttons = document.getElementById("buttons");
const stopSounds = () => {
sounds.forEach((sound) => {
const currentSound = document.getElementById(sound);
currentSound.pause();
currentSound.currentTime = 0;
const buttons = document.getElementById("buttons");
const stopSounds = () => {
sounds.forEach((sound) => {
const currentSound = document.getElementById(sound);
currentSound.pause();
currentSound.currentTime = 0;